edb603f958ddaa6df63c6dd2068567fabb6dfc94,src/main/java/org/jboss/logmanager/handlers/SslTcpOutputStream.java,SslTcpOutputStream,SslTcpOutputStream,#InetAddress#number#,15

Before Change


public class SslTcpOutputStream extends TcpOutputStream implements FlushableCloseable {

    public SslTcpOutputStream(final InetAddress address, final int port) throws IOException {
        super(SSLSocketFactory.getDefault().createSocket(address, port));
    }
}

After Change


     * @throws IOException if an I/O error occurs when creating the socket
     */
    public SslTcpOutputStream(final InetAddress address, final int port) throws IOException {
        super(SSLSocketFactory.getDefault(), address, port);
    }

    /**
     * Creates a SSL TCP output stream.